home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mger.dir / 00071_Preview G..ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  729 b   |  34 lines

  1. on mouseUp
  2.   global prev, lastFrame
  3.   if count(movielist) > 0 then
  4.     set Chosen to 0
  5.     repeat with i = 1 to count(movielist)
  6.       if getAt(selected, i) = 1 then
  7.         set Chosen to 1
  8.       end if
  9.     end repeat
  10.     if Chosen = 1 then
  11.       set prev to 1
  12.       set lastFrame to the frame
  13.       put "just after LastFrame set"
  14.       repeat with i = 13 to 18
  15.         puppetSprite(i, 1)
  16.         set the visible of sprite i to 1
  17.         puppetSprite(i, 0)
  18.       end repeat
  19.       go("PPrv")
  20.       updateStage()
  21.     else
  22.       repeat with x = 13 to 18
  23.         puppetSprite(x, 0)
  24.       end repeat
  25.       go("NoSel")
  26.     end if
  27.   else
  28.     repeat with x = 13 to 18
  29.       puppetSprite(x, 0)
  30.     end repeat
  31.     go("NoMov")
  32.   end if
  33. end
  34.